home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000252_fdc@columbia.edu_Fri Feb 24 16:28:32 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc,comp.os.vms
  4. Subject: Re: Building SSL support on VMS V7.3-2
  5. Date: 24 Feb 2006 21:28:06 GMT
  6. Organization: Columbia University
  7. Lines: 47
  8. Message-ID: <slrndvuuj6.g9j.fdc@sesame.cc.columbia.edu>
  9. References: <c2suv1t38is2r4qpt5m376kkv630qokdaj@4ax.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1140816486 13366 128.59.59.56 (24 Feb 2006 21:28:06 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 24 Feb 2006 21:28:06 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15502 comp.os.vms:441732
  17.  
  18. On 2006-02-24, Dave Harrold <DHarrold@wi.rr.com> wrote:
  19.  
  20. (Referring to the latest C-Kermit build:)
  21.  
  22.   http://www.columbia.edu/kermit/ckdaily.html
  23.  
  24. : We have a requirment an FTP connection over SSL from our system to an
  25. : external provider.  I pulled the latest daily build kit down and
  26. : rebuilt using the SSL option.
  27. :
  28. : @ckvker.com s D "CK_SSL, NODEBUG"
  29. :
  30. : Which resulted in this version of kermit:
  31. :
  32. : C-Kermit 8.0.212 Dev.13, 9 Feb 2006, for OpenVMS Alpha
  33. :  Copyright (C) 1985, 2006,
  34. :   Trustees of Columbia University in the City of New York.
  35. : Type ? or HELP for help.
  36. : UTILITY:[KERMIT.SOURCE] C-Kermit>
  37. :
  38. : Following the examples in the security guide, I am running into
  39. : problems.  The SET FTP commands do not seem to exist in this
  40. : executable I built.
  41. :
  42. Right, as noted on the website the FTP client is available only in
  43. the Unix version of C-Kermit and in Kermit 95.
  44.  
  45. : UTILITY:[KERMIT.SOURCE] C-Kermit>set ftp ?No keywords match - ftp
  46. : UTILITY:[KERMIT.SOURCE] C-Kermit>set
  47. :
  48. : So, can anyone help me get past this problem?
  49. :
  50. Only by adapting the FTP module (ckcftp.c) to VMS.  This would be a
  51. rather major undertaking, even by someone who would know how to do it:
  52.  
  53.  . DEC C programmer
  54.  . RMS programming for accessing the local file system
  55.  . Familiarity with the various TCP/IP stacks used in VMS
  56.  . Familiarity with FTP and security protocols
  57.  . Familiarity with VMS-specific FTP protocols
  58.  
  59. Over the last few years I've spoken to almost everyone who has this set of
  60. skills, but none of them has time to work on it, although everyone agrees it
  61. would be a great addition to the VMS toolbag, if it were done: a secure,
  62. scriptable FTP client for VMS.
  63.  
  64. - Frank